home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows Game Boss - 99 Games
/
Powersource Multimedia - Windows Game Boss 99 Games.iso
/
abo.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-12-25
|
504b
|
33 lines
unit Abo;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
TAboutBox = class(TForm)
Panel1: TPanel;
OKButton: TBitBtn;
ProgramIcon: TImage;
ProductName: TLabel;
Copyright: TLabel;
Comments: TLabel;
Label1: TLabel;
Label2: TLabel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
AboutBox: TAboutBox;
implementation
{$R *.DFM}
end.